Description : Using `@each` loop to iterate in SASS.
Answer :
`@each` is a loop inSASS that iterates over lists or maps to generate styles dynamically. For example,`@each $color in $colors { .text-#{$color} { color: $color; } }` will create text classes for each color in the `$colors` list, applying the respective color to the `.text-#{$color}`class.